runtime.heapStatsDelta.inHeap (field)

11 uses

	runtime (current package)
		arena.go#L897: 	atomic.Xaddint64(&stats.inHeap, -int64(s.npages*pageSize))
		arena.go#L1077: 	atomic.Xaddint64(&stats.inHeap, int64(userArenaChunkBytes))
		metrics.go#L335: 				out.scalar = uint64(in.heapStats.committed - in.heapStats.inHeap -
		metrics.go#L364: 				out.scalar = uint64(in.heapStats.inHeap) - in.heapStats.inObjects
		mheap.go#L1418: 		atomic.Xaddint64(&stats.inHeap, int64(nbytes))
		mheap.go#L1738: 		atomic.Xaddint64(&stats.inHeap, -int64(nbytes))
		mstats.go#L465: 		if gcController.heapInUse.load() != uint64(consStats.inHeap) {
		mstats.go#L467: 			print("runtime: consistent value=", consStats.inHeap, "\n")
		mstats.go#L674: 	inHeap     int64 // byte delta of memory placed in the heap
		mstats.go#L699: 	a.inHeap += b.inHeap